IOhlcDataSeries

StockSharp.Xaml.Charting.Model.DataSeries

Defines the typed interface to an OHLC DataSeries, a series containing Open, High, Low, Close data-points

Implements: IDataSeries<T, T>, IDataSeries, ISuspendable, IOhlcDataSeries

Properties

CloseValues : IList<T>

Gets the Close Values of this DataSeries, if the data is OHLC

HighValues : IList<T>

Gets the High Values of this DataSeries, if the data is OHLC

LowValues : IList<T>

Gets the Low Values of this DataSeries, if the data is OHLC

OpenValues : IList<T>

Gets the Open Values of this DataSeries, if the data is OHLC

Methods

Append(T, T, T, T, T)

Appends an Open, High, Low, Close point to the series

x
The X value
open
The Open value
high
The High value
low
The Low value
close
The Close value
Append(IEnumerable<T>, IEnumerable<T>, IEnumerable<T>, IEnumerable<T>, IEnumerable<T>)

Appends a list of Open, High, Low, Close points to the series

x
The list of X values
open
The list of Open values
high
The list of High values
low
The list of Low values
close
The list of Close values
Insert(int, T, T, T, T, T)

Inserts an Open, High, Low, Close point at the specified index

index
The index to insert at
x
The X value
open
The Open value
high
The High value
low
The low value
close
The close value
InsertRange(int, IEnumerable<T>, IEnumerable<T>, IEnumerable<T>, IEnumerable<T>, IEnumerable<T>)

Inserts a list of Open, High, Low, Close points at the specified index

startIndex
The index to insert at
x
The list of X values
open
The list of Open values
high
The list of High values
low
The list of Low values
close
The list of Close values
Update(T, T, T, T, T)

Updates an Open, High, Low, Close point specified by the X-Value passed in.

x
The X Value to key on when updating
open
The Open value
high
The High value
low
The Low value
close
The Close value